home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat7 / convol.7 < prev    next >
Text File  |  1999-09-16  |  880b  |  67 lines

  1.  
  2.  
  3.  
  4. convol(1)                      Scilab Function                      convol(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   convol - convolution
  13.  
  14. CALLING SEQUENCE
  15.   [y]=convol(h,x)
  16.   [y,e1]=convol(h,x,e0)
  17.  
  18. PARAMETERS
  19.  
  20.   x,h       :input sequences (h is a "short" sequence, x a "long" one)
  21.  
  22.   e0        : old tail to overlap add (not used in first call)
  23.  
  24.   y         : output of convolution
  25.  
  26.   e1        : new tail to overlap add (not used in last call)
  27.  
  28. DESCRIPTION
  29.   calculates the convolution y= h*x of two discrete sequences by using the
  30.   fft.  Overlap add method can be used.
  31.  
  32.   USE OF OVERLAP ADD METHOD: For x=[x1,x2,...,xNm1,xN] First call is
  33.   [y1,e1]=convol(h,x1); Subsequent calls : [yk,ek]=convol(h,xk,ekm1); Final
  34.   call : [yN]=convol(h,xN,eNm1); Finally y=[y1,y2,...,yNm1,yN]
  35.  
  36. SEE ALSO
  37.   corr,fft,pspec and polynomial product.
  38.  
  39. AUTHOR
  40.   F. D , C. Bunks Date 3 Oct. 1988
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.